home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / prog / ru04.arj / RCLIP.DOC < prev    next >
Text File  |  1994-02-10  |  5KB  |  163 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.        //////////     ////    /////////  //////////   ////////  //////////
  20.       ///      //   //  //   //             //       //        ///      //
  21.      //////////   ////////  /////////      //       //////    //////////
  22.     ///    //    //    //         //      //       //        ///    //
  23.    ///     ///  //    //   ////////      //       ////////  ///     ///
  24.  
  25.  
  26.                /////////////    //       //       //////////
  27.               ///         /    //       //       //       //
  28.              ///              //       //       //////////
  29.             ///              //       //       //
  30.            ///         /    //       //       //
  31.           /////////////    ///////  //       //
  32.  
  33.  
  34.  
  35.  
  36.  
  37.                                Version 2.0
  38.                  (c) Copyright 1993 By Blueview Software.
  39.                             All Rights Reserved.
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. 1.1  INTRODUCTION
  61.  
  62.     Raster Clip is a screen clipping utility for programmers.  PCX/BMP files
  63. can be loaded clipped and saved in XGF format which can easily be loaded into
  64. your programs using the supplied code.  Additional save formats (SPR/PPR) are
  65. also included for Fastgraph users.
  66.  
  67. 1.2  REQUIREMENTS
  68.  
  69.    Dos 3.1 or higher
  70.    EGA, VGA, or SVGA display card
  71.    Mouse
  72.  
  73. 1.3  CUSTOMER SERVICE
  74.  
  75.      If you have any questions, comments, or suggestions,
  76.      Blueview Software can be contacted by:
  77.  
  78.      Voice - (416) 757-7944
  79.  
  80.      BAUDEVILLE BBS (416) 283-0114  (Blueview Conference)
  81.      CAP/CANADA BBS (416) 287-0935  (Blueview Conference)
  82.      CAP/USA    BBS (708) 854-0255  (Blueview Conference)
  83.  
  84.      Shareware Conferences - RIME, INTELEC, NANET, CITY2CITY, FIDONET,
  85.                              and ILINK. Leave message to NICK ONOUFRIOU.
  86.  
  87.      CompuServe: >INTERNET:nick.onoufriou@rose.com
  88.  
  89.      Internet: nick.onoufriou@rose.com
  90.                nick.onoufriou@bville.gts.org
  91.  
  92.      Fido net-mail: 1:250/304
  93.  
  94.      Surface Mail  - Blueview Software
  95.                      2300 Lawrence Ave. East BOX 80551
  96.                      Scarborough, Ontario
  97.                      CANADA  M1P 2R0
  98.  
  99.      NOTE: All mail _will_ be answered. If you do not receive a reply
  100.            within a few days please try again, mail does get lost.
  101.  
  102.  
  103. 2.1  USING THE RASTER CLIP
  104.  
  105.   From the main menu you can open, save, clip, change screen modes, or
  106. change the save/open format.  The default save/open format is PCX, you can
  107. change that by selecting save with the <RIGHT> mouse button.  Other formats
  108. include BMP, RAW, and PAL. Raster Clip also contains save only formats for
  109. SPR/PPR (Fastgraph) and XGF. Use the supplied source code to display XGF files.
  110.  
  111.   The clip option allows you to specify a portion of the screen that you can
  112. use to import another files or save part of the screen.  The copy option can
  113. also be used to duplicate the clipped area to different parts of the screen.
  114. Select main to return to the main menu.
  115.  
  116.  
  117.                                 Page 1
  118.  
  119.  
  120.   The mode option allows you to switch to different screen modes.  Use the
  121. exit option to exit the program.
  122.  
  123.   Raster Clip also allows you to execute script files.  From the command line
  124. type RCLIP @FILE.  The @File must contain valid script commands that can be
  125. executed to achieve most of functions available by Raster Clip.
  126.  
  127. 2.2  SCRIPT COMMANDS
  128.    -----------------------------------------------------------
  129.    '                                      Comment
  130.    sm screen_mode                         Set Screen Mode
  131.    rpcx filename x y x2 y2                Read PCX file
  132.    wpcx filename x y x2 y2                Write PCX file
  133.    rbmp filename x y x2 y2                Read BMP file
  134.    wbmp filename x y x2 y2                Write BMP file
  135.    wpal filename                          Write Palette file
  136.    rpal filename                          Read Palette file
  137.    wxgf filename x y x2 y2                Write XGF file
  138.    wspr filename x y x2 y2                Write SPR file
  139.    wppr filename x y x2 y2                Write PPR file
  140.    run filename                           execute an external program
  141.  
  142.    screen_mode can be 320x200x16, 640x200x16, 640x350x16, 640x480x16,
  143.                       800x600x16, 1024x768x16, 320x200x256, 640x400x256,
  144.                       640x480x256, 800x600x256, 1024x768x256.
  145.  
  146. 3.1  REGISTERING
  147.  
  148.  Raster Clip is NOT free software.  If you use this program you must pay for
  149.  it. Registration entitles you to a key file that deactivates the nag screens
  150.  from the current and future versions.  The key file also enables the 256
  151.  color option which is restricted in the unregistered version. Registered
  152.  users also receive BONUS programs (see BONUS.TXT.) See ORDER.TXT and
  153.  CATALOG.TXT for more information.
  154.  
  155.  
  156.  
  157.  
  158.  
  159.                                 Page 2
  160.  
  161.  
  162.  
  163.